home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinMessenger 14.xpl < prev    next >
Text File  |  2003-12-06  |  2KB  |  69 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Instant Messaging\Windows Messenger\System"
  5. "NAME"="Allow Run Options (Current User Only)"
  6. "VERSION"="1.01"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Allow Windows Messenger to be run"
  9. "TEXT 2"="Allow Windows Messenger to be run on start-up"
  10. "DESCRIPTION 1"="These options allow you to stop Windows/MSN Messenger if you want to."
  11. "DESCRIPTION 2"="NOTE: If both the "Current User" and the "All Users" settings are activated, the "All Users" settings count."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Thanks to "Kelly" <kelly@mvps.org> for the settings"
  16.  
  17.  
  18.  sP="HKCU\SOFTWARE\Microsoft\MessengerService\"
  19. sV1="HKCU\SOFTWARE\Policies\Microsoft\Messenger\Client\PreventRun" 
  20. sV2="HKCU\SOFTWARE\Policies\Microsoft\Messenger\Client\PreventAutoRun" 
  21.  
  22.  
  23. Sub Plugin_Initialize 
  24. ' if RegPathExists(sP) then
  25.     i=RegReadValue(sV1)
  26.     if i<>"1" then SetUiElement 1,true
  27.  
  28.     i=RegReadValue(sV2)
  29.     if i<>"1" then SetUiElement 2,true 
  30.  
  31. ' else
  32. '    Call Disable()
  33. ' end if
  34. End Sub
  35.  
  36.  
  37. Sub Plugin_CheckData(ElementIndex)
  38. End Sub
  39.  
  40.  
  41.  
  42. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  43.  b=GetUIElement(1)
  44.  if b=true then
  45.     if RegValueExists(sV1) then RegDeleteValue(sV1)
  46.  else
  47.     Call RegWriteValue(sV1,"1",2)
  48.  end if
  49.  
  50.  
  51.  b=GetUIElement(2)
  52.  if b=true then
  53.     if RegValueExists(sV2) then RegDeleteValue(sV2)
  54.  else
  55.     Call RegWriteValue(sV2,"1",2)
  56.  end if
  57.  
  58.  
  59.  
  60.  Call Logoff()
  61. End Sub
  62.  
  63.  
  64. Sub Plugin_Terminate 
  65. End Sub
  66.  
  67.  
  68.  
  69.